home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19960209-19960425 / 000303_news@columbia.edu _Mon Apr 1 14:30:27 1996.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: news@columbia.edu
  2. Received: from apakabar.cc.columbia.edu (apakabar.cc.columbia.edu [128.59.35.159]) by watsun.cc.columbia.edu (8.7.3/8.7.3) with ESMTP id OAA20176 for <kermit.misc@watsun>; Mon, 1 Apr 1996 14:30:25 -0500 (EST)
  3. Received: (from news@localhost) by apakabar.cc.columbia.edu (8.7.3/8.7.3) id OAA05570 for kermit.misc@watsun; Mon, 1 Apr 1996 14:30:19 -0500 (EST)
  4. Path: news.columbia.edu!watsun.cc.columbia.edu!fdc
  5. From: fdc@watsun.cc.columbia.edu (Frank da Cruz)
  6. Newsgroups: comp.protocols.kermit.misc
  7. Subject: Re: How to 'OUTPUT \N0' ?
  8. Date: 1 Apr 1996 19:29:46 GMT
  9. Organization: Columbia University
  10. Lines: 41
  11. Message-ID: <4jpara$5d2@apakabar.cc.columbia.edu>
  12. References: <Dp3IE5.C3x@iglou.com>
  13. NNTP-Posting-Host: watsun.cc.columbia.edu
  14.  
  15. In article <Dp3IE5.C3x@iglou.com>, J. Wakeley Purple <wakep@iglou.com> wrote:
  16. : How do you send '\N0' to disable compression negotiation on my supra? I've
  17. : tried everything I know including '\92' as described in the book, but the
  18. : built-in escape \N is translated into a long break or something. 
  19. You're talking about C-Kermit?  Which version?  The current version is
  20. 5A(190).
  21.  
  22. In the update notes file, ckcker.upd (possibly called ckermit.upd, depending
  23. on how you got it), it explains:
  24.  
  25. The OUTPUT command accepts three special notations for sending special signals
  26. or characters:
  27.  
  28.   \B or \b or \\B or \\b
  29.     Send a BREAK signal.  On serial connections, this is a 250 millisecond
  30.     spacing condition.  On network connections, it is a network-specific
  31.     BREAK protocol message, such as a TELNET BREAK.
  32.  
  33.   \L or \l or \\L or \\l
  34.     Send a Long BREAK signal.  On serial connections, this is a 1.5-second
  35.     spacing condition.  On network connections, it is the same as \B (BREAK).
  36.  
  37.   \N or \n
  38.     Send a NUL (ASCII 0) character.  \0 can't be used for this because it is
  39.     the terminator for C-language strings.  (\N is new to edit 190.)
  40.  
  41. If you need to send \B, \L, or \N literally (e.g. to configure certain kinds
  42. of modems), you can use either:
  43.  
  44.   OUTPUT \fliteral(\B) (or \fliteral(\L) or \fliteral(\N))
  45. or:
  46.   OUTPUT \\\\B (or \\\\L or \\\\N)
  47.  
  48. (yes, four backslashes).
  49.  
  50. Note: \fliteral() can be abbreviated, e.g. \flit(\N).
  51.  
  52. (end quote)
  53.  
  54. - Frank